home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / print / gs261sr1.zip / GP_VMS.C < prev    next >
C/C++ Source or Header  |  1993-05-17  |  12KB  |  378 lines

  1. /* Copyright (C) 1989, 1992 Aladdin Enterprises.  All rights reserved.
  2.  
  3. This file is part of Ghostscript.
  4.  
  5. Ghostscript is distributed in the hope that it will be useful, but
  6. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  7. to anyone for the consequences of using it or for whether it serves any
  8. particular purpose or works at all, unless he says so in writing.  Refer
  9. to the Ghostscript General Public License for full details.
  10.  
  11. Everyone is granted permission to copy, modify and redistribute
  12. Ghostscript, but only under the conditions described in the Ghostscript
  13. General Public License.  A copy of this license is supposed to have been
  14. given to you along with Ghostscript so you can know your rights and
  15. responsibilities.  It should be in a file named COPYING.  Among other
  16. things, the copyright notice and this notice must be preserved on all
  17. copies.  */
  18.  
  19. /* gp_vms.c */
  20. /* VAX/VMS specific routines for Ghostscript */
  21. #include "gs.h"
  22. #include "gp.h"
  23. #include <stat.h>
  24.  
  25. #define MAX_VMS_FILENAME_LEN 255
  26.  
  27. /* Apparently gcc doesn't allow extra arguments for fopen: */
  28. #ifdef VMS        /* DEC C */
  29. #  define fopen_VMS fopen
  30. #else            /* gcc */
  31. #  define fopen_VMS(name, mode, m1, m2) fopen(name, mode)
  32. #endif
  33.  
  34.  
  35. /* VMS string descriptor structure */
  36. #define DSC$K_DTYPE_T 14
  37. #define DSC$K_CLASS_S  1
  38. struct dsc$descriptor_s {
  39.     unsigned short    dsc$w_length;
  40.     unsigned char    dsc$b_dtype;
  41.     unsigned char    dsc$b_class;
  42.     char        *dsc$a_pointer;
  43. };
  44. typedef struct dsc$descriptor_s descrip;
  45.  
  46. /* VMS RMS constants */
  47. #define RMS$_NMF    99018
  48. #define RMS$_NORMAL 65537
  49.  
  50. struct file_enum_s {
  51.   uint context, length;
  52.   descrip *pattern;
  53. };
  54.  
  55. extern uint
  56.   LIB$FIND_FILE(descrip *, descrip *, uint *, descrip *, descrip *,
  57.         uint *, uint *),
  58.   LIB$FIND_FILE_END(uint *),
  59.   SYS$FILESCAN (descrip *, uint *, uint *);
  60.  
  61. private uint
  62. strlength(char *str, uint maxlen, char term)
  63. {    uint i = 0;
  64.     while ( i < maxlen && str[i] != term ) i++;
  65.     return i;
  66. }
  67.  
  68. /* Do platform-dependent initialization. */
  69. void
  70. gp_init(void)
  71. {
  72. }
  73.  
  74. /* Do platform-dependent cleanup. */
  75. void
  76. gp_exit(int exit_status, int code)
  77. {
  78. }
  79.  
  80. /* ------ Date and time ------ */
  81.  
  82. /* Read the current date (in days since Jan. 1, 1980) */
  83. /* and time (in milliseconds since midnight). */
  84. void
  85. gp_get_clock(long *pdt)
  86. {    struct {uint _l0, _l1;} binary_date;
  87.     long lib$day(), sys$bintim();
  88.     long days, days0, seconds;
  89.     char *jan_1_1980 = "1-JAN-1980";
  90.     char *midnight   = "00:00:00.00";
  91.     descrip str_desc;
  92.  
  93.     /* Get days from system zero date (November 17, 1858) to present. */
  94.     (void) lib$day (&days0);
  95.  
  96.     /* For those interested, Wednesday, November 17, 1858 is the base
  97.        of the Modified Julian Day system adopted by the Smithsonian
  98.        Astrophysical Observatory in 1957 for satellite tracking.  (The
  99.        year 1858 preceded the oldest star catalog in use at the
  100.        observatory.)  VMS uses quadword time stamps which are offsets
  101.        in 100 nanosecond units from November 17, 1858.  With a 63-bit
  102.        absolute time representation (sign bit must be clear), VMS will
  103.        have no trouble with time until 31-JUL-31086 02:48:05.47. */
  104.  
  105.     /* Convert January 1, 1980 into a binary absolute time */
  106.     str_desc.dsc$w_length  = strlen(jan_1_1980);
  107.     str_desc.dsc$a_pointer = jan_1_1980;
  108.     (void) sys$bintim (&str_desc, &binary_date);
  109.  
  110.     /* Now get days from system zero date to January 1, 1980 */
  111.     (void) lib$day (&days, &binary_date);
  112.  
  113.     /* Now compute number of days since January 1, 1980 */
  114.     pdt[0] = 1 + days0 - days;
  115.  
  116.     /* Convert midnight into a binary delta time */
  117.     str_desc.dsc$w_length  = strlen(midnight);
  118.     str_desc.dsc$a_pointer = midnight;
  119.     (void)  sys$bintim (&str_desc, &binary_date);
  120.  
  121.     /* Now get number 10 millisecond time units since midnight */
  122.     (void) lib$day (&days, &binary_date, &seconds);
  123.     pdt[1] = 10 * seconds;
  124. }
  125.  
  126. /* ------ Printer accessing ------ */
  127.  
  128. /* Open a connection to a printer.  A null file name means use the */
  129. /* standard printer connected to the machine, if any. */
  130. /* Return NULL if the connection could not be opened. */
  131. FILE *
  132. gp_open_printer(char *fname, int binary_mode)
  133. {
  134.      if (strlen(fname) == 0)
  135.     {    strcpy(fname, gp_scratch_file_name_prefix);
  136.         strcat(fname, "XXXXXX");
  137.         mktemp(fname);
  138.     }
  139.     if ( binary_mode )
  140.     {    /*
  141.          * Printing must be done exactly byte to byte,
  142.          * using "passall".  However the standard VMS symbiont
  143.          * does not treat stream-LF files correctly in this respect,
  144.          * but throws away \n characters.  Giving the file
  145.          * the record type "undefined", but accessing it as a
  146.          * normal stream-LF file does the trick.
  147.          */
  148.         return fopen_VMS(fname, "w", "rfm = udf", "ctx = stm");
  149.     }
  150.     else
  151.     {    /* Open as a normal text stream file. */
  152.         return fopen_VMS(fname, "w", "rfm = var", "rat = cr");
  153.     }
  154. }
  155.  
  156. /* Close the connection to the printer. */
  157. void
  158. gp_close_printer(FILE *pfile, const char *fname)
  159. {    fclose(pfile);
  160. }
  161.  
  162. /* ------ File names ------ */
  163.  
  164. /* Define the character used for separating file names in a list. */
  165. const char gp_file_name_list_separator = ',';
  166.  
  167. /* Define the default scratch file name prefix. */
  168. const char gp_scratch_file_name_prefix[] = "_temp_";
  169.  
  170. /* Define the string to be concatenated with the file mode */
  171. /* for opening files without end-of-line conversion. */
  172. const char gp_fmode_binary_suffix[] = "";
  173. /* Define the file modes for binary reading or writing. */
  174. const char gp_fmode_rb[] = "r";
  175. const char gp_fmode_wb[] = "w";
  176.  
  177. /* Create and open a scratch file with a given name prefix. */
  178. /* Write the actual file name at fname. */
  179. FILE *
  180. gp_open_scratch_file(const char *prefix, char *fname, const char *mode)
  181. {    strcpy(fname, prefix);
  182.     strcat(fname, "XXXXXX");
  183.     mktemp(fname);
  184.     return fopen(fname, mode);
  185. }
  186. /*  Answer whether a file name contains a directory/device specification, i.e.,
  187.  *  is absolute (not directory- or device-relative).  Since for VMS, the concept
  188.  *  of an "absolute" file reference has no meaning.  As Ghostscript is here
  189.  *  merely checking to see if it will make sense to paste a path to the front
  190.  *  of the file name, we use the VMS system service SYS$FILESCAN to check that
  191.  *  the file name has no node, device, root, or directory specification: if all
  192.  *  four of these items are missing from the file name then it is considered to
  193.  *  a relative file name to which a path may be prefixed. (Roots are associated
  194.  *  with rooted logical names.)
  195.  */
  196.  
  197. int
  198. gp_file_name_is_absolute(const char *fname, uint len)
  199. {
  200.     descrip str_desc;
  201.     struct { unsigned fscn$v_node : 1;
  202.          unsigned fscn$v_device : 1;
  203.          unsigned fscn$v_root : 1;
  204.          unsigned fscn$v_directory : 1;
  205.          unsigned fscn$v_name : 1;
  206.          unsigned fscn$v_type : 1;
  207.          unsigned fscn$v_version : 1;
  208.          unsigned fscn$v_fill_23 : 1;} flags;
  209.     long zero = 0L;
  210.  
  211.     str_desc.dsc$w_length  = len;
  212.     str_desc.dsc$a_pointer = (char *)fname;
  213.     SYS$FILESCAN (&str_desc, &zero, &flags);
  214.     if ( flags.fscn$v_directory || flags.fscn$v_root ||
  215.          flags.fscn$v_device    || flags.fscn$v_node) return 1;
  216.     else return 0;
  217. }
  218.  
  219. /* Answer the string to be used for combining a directory/device prefix */
  220. /* with a base file name.  The file name is known to not be absolute. */
  221. const char *
  222. gp_file_name_concat_string(const char *prefix, uint plen,
  223.                const char *fname, uint len)
  224. {
  225.     /*  Full VAX/VMS paths are of the form:
  226.      *
  227.      *    device:[root.][directory.subdirectory]filename.extension;version
  228.      *    logical:filename.extension;version
  229.      *
  230.      *  Roots are fairly rare and associated typically with rooted logical
  231.      *  names.
  232.      *
  233.      *  Examples:
  234.      *
  235.      *    DUA1:[GHOSTSCRIPT]GHOST.PS;1
  236.      *    THOR_DEC:[DOOF.A.B.C.D]FILE.DAT;-3
  237.      *    LOG:GHOST.PS  (LOG is a logical defined as DUA1:[GHOSTSCRIPT])
  238.      *    LOG:DOOF.DAT  (LOG is defined as DUA1, current directory is
  239.      *                   is used as the directory spec.)
  240.      *
  241.      */
  242.     if ( plen > 0 )
  243.       switch ( prefix[plen - 1] )
  244.        {    case ':': case ']': return "";
  245.        };
  246.     return ":";
  247. }
  248.  
  249. /* ------ File operations ------ */
  250.  
  251. /* If the file given by fname exists, fill in its status and return 1; */
  252. /* otherwise